home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / turbotut.arc / PASCOMS.PAS < prev    next >
Pascal/Delphi Source File  |  1989-06-30  |  446b  |  16 lines

  1. PROGRAM lots_of_comments;
  2.  
  3. BEGIN { This is the start of the main program }
  4.  
  5. (* This is a comment that is ignored by the Pascal compiler *)
  6. {  This is also ignored }
  7.  
  8.   WRITELN('I am in Pascal school, Dad');      (* Comment *)
  9.   WRITELN('All students are always broke');   {Comment}
  10. (*
  11.   WRITELN('Send money');
  12.   WRITELN('Send money');
  13.     *)
  14.   WRITELN('I am really getting hungry');
  15. END. (* This is the end of the main program *)
  16.